<!DOCTYPE html>
<html class="client-nojs vector-feature-night-mode-disabled vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-sticky-header-enabled" lang="en" dir="ltr"><head>
<meta charset="UTF-8">
<title>Linker (computing)</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://en.wikipedia.org/wiki/Linker_(computing)"> <link href="./mw/ext.cite.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.icons.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.search.codex.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/user.styles.css" rel="stylesheet" type="text/css">
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" type="text/css" href="./mw/site.styles.css">
<link rel="stylesheet" type="text/css" href="./mw/noscript.css">
<link rel="stylesheet" type="text/css" href="./footer.css">
<link rel="stylesheet" type="text/css" href="./vector-2022.css">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Linker_computing rootpage-Linker_computing skin-vector-2022 action-view">
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar">
<h1 id="firstHeading" class="firstHeading mw-first-heading">
<span id="openzim-page-title" class="mw-page-title-main"><span class="mw-page-title-main">Linker (computing)</span></span>
</h1>
</header>
<a id="top"></a>
<div id="bodyContent" class="vector-body ve-init-mw-desktopArticleTarget-targetContainer" aria-labelledby="firstHeading" data-mw-ve-target-container="">
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p class="mw-empty-elt">
</p>
<p>A <b>linker</b> or <b>link editor</b> is a <a href="Computer_program" title="Computer program">computer program</a> that combines intermediate <a href="Software_build" title="Software build">software build</a> files such as <a href="Object_file" title="Object file">object</a> and <a href="Library_(computing)" title="Library (computing)">library</a> files into a single <a href="Executable" title="Executable">executable</a> file such as a program or library. A linker is often part of a <a href="Toolchain" title="Toolchain">toolchain</a> that includes a <a href="Compiler" title="Compiler">compiler</a> and/or <a href="Assembler_(computing)" class="mw-redirect" title="Assembler (computing)">assembler</a> that generates intermediate files that the linker processes. The linker may be integrated with other toolchain <a href="Development_tool" class="mw-redirect" title="Development tool">tools</a> such that the user does not interact with the linker directly.
</p><p>A simpler version that writes its <a href="Input/output" title="Input/output">output</a> directly to <a href="Computer_memory" title="Computer memory">memory</a> is called the <i>loader</i>, though <a href="Loader_(computing)" title="Loader (computing)">loading</a> is typically considered a separate process.<sup id="cite_ref-IBM_1972_1-0" class="reference"><a href="#cite_note-IBM_1972-1"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-Barron_1978_Consolidator_2-0" class="reference"><a href="#cite_note-Barron_1978_Consolidator-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup>
</p>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2"><h2 id="Overview">Overview</h2></div>
<p>Computer programs typically are composed of several parts or modules; these parts/modules do not need to be contained within a single <a href="Object_file" title="Object file">object file</a>, and in such cases refer to each other using <a href="Symbol_(computing)" class="mw-redirect" title="Symbol (computing)">symbols</a> as addresses into other modules, which are mapped into memory addresses when linked for execution.
</p><p>While the process of linking is meant to ultimately combine these independent parts, there are many good reasons to develop those separately at the <a href="Source_code" title="Source code">source</a>-level. Among these reasons are the ease of organizing several smaller pieces over a <a href="Monolithic_codebase" class="mw-redirect" title="Monolithic codebase">monolithic</a> whole and the ability to better define the purpose and responsibilities of each individual piece, which is essential for managing complexity and increasing long-term maintainability in <a href="Software_architecture" title="Software architecture">software architecture</a>.
</p><p>Typically, an object file can contain three kinds of symbols:
</p>
<ul><li>defined "external" symbols, sometimes called "public" or "entry" symbols, which allow it to be called by other modules,</li>
<li>undefined "external" symbols, which reference other modules where these symbols are defined, and</li>
<li>local symbols, used internally within the object file to facilitate <a href="Relocation_(computer_science)" class="mw-redirect" title="Relocation (computer science)">relocation</a>.</li></ul>
<p>For most compilers, each object file is the result of compiling one input source code file. When a program comprises multiple object files, the linker combines these files into a unified executable program, resolving the symbols as it goes along.
</p><p>Linkers can take objects from a collection called a <a href="Library_(computing)" title="Library (computing)">library</a> or <a href="Runtime_library" title="Runtime library">runtime library</a>. Most linkers do not include all the object files in a <a href="Static_library" title="Static library">static library</a> in the output executable; they include only those object files from the library that are referenced by other object files or libraries directly or indirectly. But for a <a href="Shared_libraries" class="mw-redirect" title="Shared libraries">shared library</a>, the entire library has to be loaded during runtime as it is not known which functions or methods will be called during runtime. Library linking may thus be an iterative process, with some referenced modules requiring additional modules to be linked, and so on. Libraries exist for diverse purposes, and one or more system libraries are usually linked in by default.
</p><p>The linker also takes care of arranging the objects in a program's <a href="Address_space" title="Address space">address space</a>. This may involve <i>relocating</i> code that assumes a specific <a href="Base_address" title="Base address">base address</a> into another base. Since a compiler seldom knows where an object will reside, it often assumes a fixed base location (for example, <a href="Zero_base" class="mw-redirect" title="Zero base">zero</a>). Relocating machine code may involve re-targeting absolute jumps, loads, and stores.
</p><p>The executable output by the linker may need another relocation pass when it is finally loaded into memory (just before execution). This pass is usually omitted on <a href="Computer_hardware" title="Computer hardware">hardware</a> offering <a href="Virtual_memory" title="Virtual memory">virtual memory</a>: every program is put into its own address space, so there is no conflict even if all programs load at the same base address. This pass may also be omitted if the executable is a <a href="Position_independent" class="mw-redirect" title="Position independent">position independent</a> executable.
</p><p>Additionally, in some operating systems, the same program handles both the jobs of linking and loading a program (<a href="Dynamic_linking" class="mw-redirect" title="Dynamic linking">dynamic linking</a>).
</p>
<div class="mw-heading mw-heading2"><h2 id="Dynamic_linking">Dynamic linking</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1236090951">
/* start https://en.wikipedia.org/ */
.mw-parser-output .hatnote{font-style:italic}.mw-parser-output div.hatnote{padding-left:1.6em;margin-bottom:0.5em}.mw-parser-output .hatnote i{font-style:normal}.mw-parser-output .hatnote+link+.hatnote{margin-top:-0.5em}@media print{body.ns-0 .mw-parser-output .hatnote{display:none!important}}
/* end https://en.wikipedia.org/ */
</style><div role="note" class="hatnote navigation-not-searchable">See also: <a href="Dynamic_linker" title="Dynamic linker">Dynamic linker</a></div>
<p>Many <a href="Operating_system" title="Operating system">operating system</a> environments allow dynamic linking, deferring the resolution of some undefined symbols until a program is run. That means that the executable code still contains undefined symbols, plus a list of objects or libraries that will provide definitions for these. Loading the program will load these objects/libraries as well, and perform a final linking.
</p><p>This approach offers two advantages:
</p>
<ul><li>Often-used libraries (for example the standard system libraries) need to be stored in only one location, not duplicated in every single executable file, thus saving limited <a href="Computer_memory" title="Computer memory">memory</a> and <a href="Disk_storage" title="Disk storage">disk</a> space.</li>
<li>If a bug in a library function is corrected by replacing the library or <a href="Computer_performance" title="Computer performance">performance</a> is improved, all programs using it dynamically will benefit from the correction after restarting them. Programs that included this function by static linking would have to be re-linked first.</li></ul>
<p>There are also disadvantages:
</p>
<ul><li>Known on the <a href="Windows" class="mw-redirect" title="Windows">Windows</a> platform as "<a href="DLL_hell" title="DLL hell">DLL hell</a>", an incompatible updated library will break executables that depended on the behavior of the previous version of the library if the newer version is not correctly <a href="Backward_compatible" class="mw-redirect" title="Backward compatible">backward compatible</a>.</li>
<li>A program, together with the libraries it uses, might be certified (e.g. as to correctness, documentation requirements, or performance) as a package, but not if components can be replaced (this also argues against automatic OS updates in critical systems; in both cases, the OS and libraries form part of a <i>qualified</i> environment).</li></ul>
<p><a href="Containerization_(computing)" title="Containerization (computing)">Contained</a> or <a href="OS-level_virtualization" title="OS-level virtualization">virtual</a> environments may further allow <a href="System_administrator" title="System administrator">system administrators</a> to mitigate or trade-off these individual pros and cons.
</p>
<div class="mw-heading mw-heading2"><h2 id="Static_linking">Static linking</h2></div>
<p>Static linking is the result of the linker copying all library routines used in the program into the executable image. This may require more disk space and memory than dynamic linking, but is more portable, since it does not require the presence of the <a href="Dynamic-link_library" title="Dynamic-link library">library</a> on the system where it runs. Static linking also prevents "DLL hell", since each program includes exactly the versions of library routines that it requires, with no conflict with other programs. A program using just a few routines from a library does not require the entire library to be installed.
</p>
<div class="mw-heading mw-heading2"><h2 id="Relocation">Relocation</h2></div>
<p>As the compiler has no information on the layout of objects in the final output, it cannot take advantage of shorter or more efficient instructions that place a requirement on the address of another object. For example, a jump instruction can reference an absolute address or an offset from the current location, and the offset could be expressed with different lengths depending on the distance to the target. By first generating the most conservative instruction (usually the largest relative or absolute variant, depending on platform) and adding <i>relaxation hints</i>, it is possible to substitute shorter or more efficient instructions during the final link. In regard to jump optimizations this is also called <i>automatic jump-sizing</i>.<sup id="cite_ref-Salomon_1992_3-0" class="reference"><a href="#cite_note-Salomon_1992-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> This step can be performed only after all input objects have been read and assigned temporary addresses; the <b>linker relaxation</b> pass subsequently reassigns addresses, which may in turn allow more potential relaxations to occur. In general, the substituted sequences are shorter, which allows this process to always converge on the best solution given a fixed order of objects; if this is not the case, relaxations can conflict, and the linker needs to weigh the advantages of either option.
</p><p>While instruction relaxation typically occurs at link-time, inner-module relaxation can already take place as part of the optimizing process at <a href="Compile-time" class="mw-redirect" title="Compile-time">compile-time</a>. In some cases, relaxation can also occur at <a href="Load-time" class="mw-redirect" title="Load-time">load-time</a> as part of the relocation process or combined with <a href="Dynamic_dead-code_elimination" class="mw-redirect" title="Dynamic dead-code elimination">dynamic dead-code elimination</a> techniques.
</p>
<div class="mw-heading mw-heading2"><h2 id="Linkage_editor">Linkage editor</h2></div>
<p>In IBM <a href="System/360" class="mw-redirect" title="System/360">System/360</a> through <a href="IBM_Z" title="IBM Z">IBM Z</a> <a href="Mainframe_computer" title="Mainframe computer">mainframe</a> operating systems such as <a href="OS/360_and_successors" title="OS/360 and successors">OS/360 and its successors</a>, this type of program is known as a <i>linkage editor</i>. As the name implies a linkage <i>editor</i> has the additional capability of allowing the addition, replacement, and/or deletion of individual program sections. Operating systems such as OS/360 have format for executable load-modules containing supplementary data about the component sections of a program, so that an individual program section can be replaced, and other parts of the program updated so that relocatable addresses and other references can be corrected by the linkage editor, as part of the process.
</p><p>One advantage of this is that it allows a program to be maintained without having to keep all of the intermediate object files, or without having to re-compile program sections that haven't changed. It also permits program updates to be distributed in the form of small files (originally <a href="Card_deck_(computing)" class="mw-redirect" title="Card deck (computing)">card decks</a>), containing only the object module to be replaced. In such systems, object code is in the form and format of 80-byte punched-card images, so that updates can be introduced into a system using that medium. In later releases of OS/360 and in subsequent systems, load-modules contain additional data about versions of components modules, to create a traceable record of updates. It also allows one to add, change, or remove an <a href="Overlay_(programming)" title="Overlay (programming)">overlay</a> structure from an already linked load module.
</p><p>The term "linkage editor" should not be construed as implying that the program operates in a user-interactive mode like a text editor. It is intended for batch-mode execution, with the editing commands being supplied by the user in sequentially organized files, such as <a href="Punched_card" title="Punched card">punched cards</a>, <a href="Direct-access_storage_device" title="Direct-access storage device">DASD</a>, or <a href="Magnetic_tape" title="Magnetic tape">magnetic tape</a>.
</p><p><i>Linkage editing</i> (<a href="IBM" title="IBM">IBM</a> nomenclature) or <i>consolidation</i> or <i>collection</i> (<a href="International_Computers_Limited" title="International Computers Limited">ICL</a> nomenclature) refers to the <i>linkage editor's</i> or <i>consolidator's</i> act of combining the various pieces into a relocatable binary, whereas the loading and relocation into an absolute binary at the target address is normally considered a separate step.<sup id="cite_ref-Barron_1978_Consolidator_2-1" class="reference"><a href="#cite_note-Barron_1978_Consolidator-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Linker_control_scripts">Linker control scripts</h2></div>
<p>In the beginning linkers gave users very limited control over the arrangement of generated output object files. As the target systems became complex with different memory requirements such as embedded systems, it became necessary to give users control to generate output object files with their specific requirements such as defining base addresses' of segments. Linkers control scripts were used for this.
</p>
<div class="mw-heading mw-heading2"><h2 id="Implementations">Implementations</h2></div>
<p>Notable implementations:
</p>
<div class="mw-heading mw-heading3"><h3 id="Unix_&_Unix-like">Unix & Unix-like</h3></div>
<p>On Unix and Unix-like systems, the static linker is usually invoked via the command <code>ld</code> which is an abbreviation of <i>LoaDer</i> or <i>Link eDitor</i>. The term "loader" was used to describe the process of loading external symbols from other programs during the process of linking.<sup id="cite_ref-UNIX_V6_manuals_4-0" class="reference"><a href="#cite_note-UNIX_V6_manuals-4"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup>
</p><p>For example, on <a href="SINTRAN_III" class="mw-redirect" title="SINTRAN III">SINTRAN III</a>, linking (assembling object files into a program) was called <i>loading</i> – as in loading executable code onto a file.<sup id="cite_ref-BRF_1984_5-0" class="reference"><a href="#cite_note-BRF_1984-5"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading3"><h3 id="GNU">GNU</h3></div>
<p>GNU ld, part of the <a href="GNU_Binary_Utilities" class="mw-redirect" title="GNU Binary Utilities">GNU Binary Utilities</a> (binutils), is the <a href="GNU_Project" title="GNU Project">GNU Project</a> version of the Unix static linker. A <i>linker script</i> may be passed to GNU ld to exercise fine grain control of the linking process.<sup id="cite_ref-GNU_2018_Binutils_6-0" class="reference"><a href="#cite_note-GNU_2018_Binutils-6"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup> Two versions of ld are provided in binutils: the traditional GNU ld based on <a href="Binary_File_Descriptor_library" title="Binary File Descriptor library">bfd</a>, and a streamlined ELF-only version called <a href="Gold_(linker)" title="Gold (linker)">gold</a>.
</p><p>The <a href="LLVM" title="LLVM">LLVM</a> project's linker, <i><style data-mw-deduplicate="TemplateStyles:r1238216509">
/* start https://en.wikipedia.org/ */
.mw-parser-output .vanchor>:target~.vanchor-text{background-color:#b1d2ff}@media screen{html.skin-theme-clientpref-night .mw-parser-output .vanchor>:target~.vanchor-text{background-color:#0f4dc9}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .vanchor>:target~.vanchor-text{background-color:#0f4dc9}}
/* end https://en.wikipedia.org/ */
</style><span class="vanchor"><span class="vanchor-text">lld</span></span></i>, is designed to be drop-in compatible,<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup> and may be used directly with the GNU compiler. Another drop-in replacement, mold, is a highly parallelized and faster alternative which is also supported by GNU tools.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="See_also">See also</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1266661725">
/* start https://en.wikipedia.org/ */
.mw-parser-output .portalbox{padding:0;margin:0.5em 0;display:table;box-sizing:border-box;max-width:175px;list-style:none}.mw-parser-output .portalborder{border:1px solid var(--border-color-base,#a2a9b1);padding:0.1em;background:var(--background-color-neutral-subtle,#f8f9fa)}.mw-parser-output .portalbox-entry{display:table-row;font-size:85%;line-height:110%;height:1.9em;font-style:italic;font-weight:bold}.mw-parser-output .portalbox-image{display:table-cell;padding:0.2em;vertical-align:middle;text-align:center}.mw-parser-output .portalbox-link{display:table-cell;padding:0.2em 0.2em 0.2em 0.3em;vertical-align:middle}@media(min-width:720px){.mw-parser-output .portalleft{margin:0.5em 1em 0.5em 0}.mw-parser-output .portalright{clear:right;float:right;margin:0.5em 0 0.5em 1em}}
/* end https://en.wikipedia.org/ */
</style>
<style data-mw-deduplicate="TemplateStyles:r1184024115">
/* start https://en.wikipedia.org/ */
.mw-parser-output .div-col{margin-top:0.3em;column-width:30em}.mw-parser-output .div-col-small{font-size:90%}.mw-parser-output .div-col-rules{column-rule:1px solid #aaa}.mw-parser-output .div-col dl,.mw-parser-output .div-col ol,.mw-parser-output .div-col ul{margin-top:0}.mw-parser-output .div-col li,.mw-parser-output .div-col dd{page-break-inside:avoid;break-inside:avoid-column}
/* end https://en.wikipedia.org/ */
</style><div class="div-col" style="column-width: 20em;">
<ul><li><a href="Binary_File_Descriptor_library" title="Binary File Descriptor library">Binary File Descriptor library</a> (libbfd)</li>
<li><a href="Build_(computing)" class="mw-redirect" title="Build (computing)">Build (computing)</a></li>
<li><a href="Compile_and_go_system" title="Compile and go system">Compile and go system</a></li>
<li><a href="DLL_hell" title="DLL hell">DLL hell</a></li>
<li><a href="Direct_binding" title="Direct binding">Direct binding</a></li>
<li><a href="Dynamic_binding_(computing)" class="mw-redirect" title="Dynamic binding (computing)">Dynamic binding</a></li>
<li><a href="Dynamic_dead_code_elimination" class="mw-redirect" title="Dynamic dead code elimination">Dynamic dead code elimination</a></li>
<li><a href="Dynamic_dispatch" title="Dynamic dispatch">Dynamic dispatch</a></li>
<li><a href="Dynamic_library" title="Dynamic library">Dynamic library</a></li>
<li><a href="Dynamic_linker" title="Dynamic linker">Dynamic linker</a></li>
<li><a href="Dynamic_loading" title="Dynamic loading">Dynamic loading</a></li>
<li><a href="Dynamic-link_library" title="Dynamic-link library">Dynamic-link library</a></li>
<li><a href="External_variable" title="External variable">External variable</a></li>
<li><a href="Library_(computing)" title="Library (computing)">Library</a></li>
<li><a href="Loader_(computing)" title="Loader (computing)">Loader</a></li>
<li><a href="Name_decoration" class="mw-redirect" title="Name decoration">Name decoration</a></li>
<li><a href="Prelinking" class="mw-redirect" title="Prelinking">Prelinking</a> (prebinding)</li>
<li><a href="Relocation_(computing)" title="Relocation (computing)">Relocation</a></li>
<li><a href="Smart_linking" class="mw-redirect" title="Smart linking">Smart linking</a></li>
<li><a href="Static_library" title="Static library">Static library</a></li>
<li><a href="Gold_(linker)" title="Gold (linker)">Gold (linker)</a></li></ul>
</div>
<div class="mw-heading mw-heading2"><h2 id="References">References</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1239543626">
/* start https://en.wikipedia.org/ */
.mw-parser-output .reflist{margin-bottom:0.5em;list-style-type:decimal}@media screen{.mw-parser-output .reflist{font-size:90%}}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}
/* end https://en.wikipedia.org/ */
</style><div class="reflist">
<div class="mw-references-wrap"><ol class="references">
<li id="cite_note-IBM_1972-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-IBM_1972_1-0">^</a></b></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1238218222">
/* start https://en.wikipedia.org/ */
.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("./mw/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("./mw/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("./mw/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("./mw/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}
/* end https://en.wikipedia.org/ */
</style><cite class="citation book cs1"><a rel="nofollow" class="external text" href="http://bitsavers.informatik.uni-stuttgart.de/pdf/ibm/360/os/R21.0_Mar72/GC28-6538-9_OS_Linkage_Editor_and_Loader_Release_21_Jan72.pdf"><i>IBM OS Linkage Editor and Loader</i></a> <span class="cs1-format">(PDF)</span>. <a href="IBM_Corporation" class="mw-redirect" title="IBM Corporation">IBM Corporation</a>. 1972. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20200306230227/http://bitsavers.informatik.uni-stuttgart.de/pdf/ibm/360/os/R21.0_Mar72/GC28-6538-9_OS_Linkage_Editor_and_Loader_Release_21_Jan72.pdf">Archived</a> <span class="cs1-format">(PDF)</span> from the original on 2020-03-06<span class="reference-accessdate">. Retrieved <span class="nowrap">2020-03-07</span></span>.</cite></span>
</li>
<li id="cite_note-Barron_1978_Consolidator-2"><span class="mw-cite-backlink">^ <a href="#cite_ref-Barron_1978_Consolidator_2-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Barron_1978_Consolidator_2-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite id="CITEREFBarron1978" class="citation book cs1 cs1-prop-location-test"><a href="David_W._Barron" title="David W. Barron">Barron, David William</a> (1978) [1971, 1969]. "5.7. Linkage editors and consolidators". Written at <a href="University_of_Southampton" title="University of Southampton">University of Southampton</a>, Southampton, UK. In Floretin, J. John (ed.). <i>Assemblers and Loaders</i>. Computer Monographs (3 ed.). New York, US: <a href="Elsevier_North-Holland_Inc." class="mw-redirect" title="Elsevier North-Holland Inc.">Elsevier North-Holland Inc.</a> pp. <span class="nowrap">65–</span>66. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <bdi>0-444-19462-2</bdi>. <a href="LCCN_(identifier)" class="mw-redirect" title="LCCN (identifier)">LCCN</a> <a rel="nofollow" class="external text" href="https://lccn.loc.gov/78-19961">78-19961</a>.</cite></span>
</li>
<li id="cite_note-Salomon_1992-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-Salomon_1992_3-0">^</a></b></span> <span class="reference-text"><cite id="CITEREFSalomon1993" class="citation book cs1 cs1-prop-location-test">Salomon, David (February 1993) [1992]. <a rel="nofollow" class="external text" href="http://www.davidsalomon.name/assem.advertis/asl.pdf">"8.2.3 Automatic jump-sizing"</a> <span class="cs1-format">(PDF)</span>. Written at California State University, Northridge, California, US. In Chivers, Ian D. (ed.). <i>Assemblers and Loaders</i>. Ellis Horwood Series In Computers And Their Applications (1 ed.). Chicester, West Sussex, UK: <a href="Ellis_Horwood_Limited" class="mw-redirect" title="Ellis Horwood Limited">Ellis Horwood Limited</a> / <a href="Simon_%26_Schuster_International_Group" class="mw-redirect" title="Simon & Schuster International Group">Simon & Schuster International Group</a>. pp. <span class="nowrap">237–</span>238. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <bdi>0-13-052564-2</bdi>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20200323010358/http://www.davidsalomon.name/assem.advertis/asl.pdf">Archived</a> <span class="cs1-format">(PDF)</span> from the original on 2020-03-23<span class="reference-accessdate">. Retrieved <span class="nowrap">2008-10-01</span></span>.</cite> (xiv+294+4 pages)</span>
</li>
<li id="cite_note-UNIX_V6_manuals-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-UNIX_V6_manuals_4-0">^</a></b></span> <span class="reference-text"><cite class="citation book cs1">"1. ld". <i>UNIX PROGRAMMER'S MANUAL</i> (6 ed.). May 1975.</cite></span>
</li>
<li id="cite_note-BRF_1984-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-BRF_1984_5-0">^</a></b></span> <span class="reference-text"><cite class="citation book cs1"><i>BRF-LINKER User Manual</i>. August 1984. ND-60.196.01.</cite></span>
</li>
<li id="cite_note-GNU_2018_Binutils-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-GNU_2018_Binutils_6-0">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://sourceware.org/binutils/docs/ld/Scripts.html">"GNU Binutils: Linker Scripts"</a>. 2018-07-18. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20200306230349/https://sourceware.org/binutils/docs/ld/Scripts.html">Archived</a> from the original on 2020-03-06<span class="reference-accessdate">. Retrieved <span class="nowrap">2019-01-18</span></span>.</cite></span>
</li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://lld.llvm.org/">"LLD - The LLVM Linker — lld 14 documentation"</a>. <i>lld.llvm.org</i>.</cite></span>
</li>
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.phoronix.com/scan.php?page=news_item&px=GCC-12-Mold-Linker">"GCC 12 Adds Support For Using The Mold Linker"</a>. <i>www.phoronix.com</i>.</cite></span>
</li>
</ol></div></div>
<div class="mw-heading mw-heading2"><h2 id="Further_reading">Further reading</h2></div>
<ul><li><cite id="CITEREFFraserHanson1982" class="citation journal cs1">Fraser, Christopher W.; <a href="David_Hanson_(computer_scientist)" title="David Hanson (computer scientist)">Hanson, David R.</a> (April 1982). "A Machine Independent Linker". <i>Software: Practice and Experience</i>. <b>12</b> (4). <a href="John_Wiley_%26_Sons_Ltd" class="mw-redirect" title="John Wiley & Sons Ltd">John Wiley & Sons Ltd</a>: <span class="nowrap">351–</span>366. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1002%2Fspe.4380120407">10.1002/spe.4380120407</a>. <a href="ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a> <a rel="nofollow" class="external text" href="https://search.worldcat.org/issn/1097-024X">1097-024X</a>. <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:206508204">206508204</a>.</cite></li>
<li><cite class="citation book cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20071001000734/http://www.bitsavers.org/pdf/ibm/360/Y28-6610_LinkEdit(E)_PLM.pdf"><i>Operating System 360 - Linkage Editor (E) - Program Logic Manual</i></a> <span class="cs1-format">(PDF)</span> (3 ed.). <a href="International_Business_Machines_Corporation" class="mw-redirect" title="International Business Machines Corporation">International Business Machines Corporation</a>. 1969-07-23 [June 1967]. Program number 360S-ED-510. File No. S360-31. Form Y28-6610-2. Archived from <a rel="nofollow" class="external text" href="http://www.bitsavers.org/pdf/ibm/360/Y28-6610_LinkEdit(E)_PLM.pdf">the original</a> <span class="cs1-format">(PDF)</span> on 2007-10-01<span class="reference-accessdate">. Retrieved <span class="nowrap">2020-03-07</span></span>.</cite></li>
<li><cite id="CITEREFJones1983" class="citation journal cs1"><a href="Douglas_W._Jones" title="Douglas W. Jones">Jones, Douglas W.</a> (August 1983). "Assembly Language as Object Code". <i>Software: Practice and Experience</i>. <b>13</b> (8). <a href="John_Wiley_%26_Sons_Ltd" class="mw-redirect" title="John Wiley & Sons Ltd">John Wiley & Sons Ltd</a>: <span class="nowrap">715–</span>725. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1002%2Fspe.4380130806">10.1002/spe.4380130806</a>. <a href="ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a> <a rel="nofollow" class="external text" href="https://search.worldcat.org/issn/1097-024X">1097-024X</a>. <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:42995338">42995338</a>.</cite></li>
<li><cite id="CITEREFLevine2000" class="citation book cs1"><a href="John_R._Levine" title="John R. Levine">Levine, John R.</a> (2000) [October 1999]. <a rel="nofollow" class="external text" href="https://www.iecc.com/linker/"><i>Linkers and Loaders</i></a>. The Morgan Kaufmann Series in Software Engineering and Programming (1 ed.). San Francisco, US: <a href="Morgan_Kaufmann" class="mw-redirect" title="Morgan Kaufmann">Morgan Kaufmann</a>. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <bdi>1-55860-496-0</bdi>. <a href="OCLC_(identifier)" class="mw-redirect" title="OCLC (identifier)">OCLC</a> <a rel="nofollow" class="external text" href="https://search.worldcat.org/oclc/42413382">42413382</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-12</span></span>.</cite> Code: <a rel="nofollow" class="external autonumber" href="https://linker.iecc.com/code.html">[1]</a> Errata: <a rel="nofollow" class="external autonumber" href="https://linker.iecc.com/">[2]</a></li>
<li><cite id="CITEREFPresserWhite1972" class="citation journal cs1"><a href="Leon_Presser" title="Leon Presser">Presser, Leon</a>; White, John R. (September 1972). <a rel="nofollow" class="external text" href="https://inst.eecs.berkeley.edu/~cs162/sp06/hand-outs/p149-presser-linker-loader.pdf">"Linkers and Loaders"</a> <span class="cs1-format">(PDF)</span>. <i><a href="ACM_Computing_Surveys" title="ACM Computing Surveys">ACM Computing Surveys</a></i>. <b>4</b> (3). University of California, Santa Barbara, California, US: <span class="nowrap">149–</span>167. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1145%2F356603.356605">10.1145/356603.356605</a>. <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:5694671">5694671</a>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20200307001527/http://www-inst.eecs.berkeley.edu/~cs162/sp06/hand-outs/p149-presser-linker-loader.pdf">Archived</a> <span class="cs1-format">(PDF)</span> from the original on 2020-03-07<span class="reference-accessdate">. Retrieved <span class="nowrap">2020-03-07</span></span>.</cite> (19 pages)</li>
<li><cite id="CITEREFRamsey1996" class="citation journal cs1">Ramsey, Norman (May 1996). <a rel="nofollow" class="external text" href="https://www.cs.tufts.edu/~nr/pubs/relocating.pdf">"Relocating Machine Instructions by Currying"</a> <span class="cs1-format">(PDF)</span>. <i>ACM SIGPLAN Notices</i>. <b>31</b> (5): <span class="nowrap">226–</span>236. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1145%2F249069.231429">10.1145/249069.231429</a>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20200518103430/https://www.cs.tufts.edu/~nr/pubs/relocating.pdf">Archived</a> <span class="cs1-format">(PDF)</span> from the original on 2020-05-18.</cite></li></ul>
<div class="mw-heading mw-heading2"><h2 id="External_links">External links</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1290876196">
/* start https://en.wikipedia.org/ */
.mw-parser-output .side-box{margin:4px 0;box-sizing:border-box;border:1px solid #aaa;font-size:88%;line-height:1.25em;background-color:var(--background-color-interactive-subtle,#f8f9fa);display:flow-root}.mw-parser-output .infobox .side-box{font-size:100%}.mw-parser-output .side-box-abovebelow,.mw-parser-output .side-box-text{padding:0.25em 0.9em}.mw-parser-output .side-box-image{padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .side-box-imageright{padding:2px 0.9em 2px 0;text-align:center}@media(min-width:500px){.mw-parser-output .side-box-flex{display:flex;align-items:center}.mw-parser-output .side-box-text{flex:1;min-width:0}}@media(min-width:720px){.mw-parser-output .side-box{width:238px}.mw-parser-output .side-box-right{clear:right;float:right;margin-left:1em}.mw-parser-output .side-box-left{margin-right:1em}}
/* end https://en.wikipedia.org/ */
</style><style data-mw-deduplicate="TemplateStyles:r1237033735">
/* start https://en.wikipedia.org/ */
@media print{body.ns-0 .mw-parser-output .sistersitebox{display:none!important}}@media screen{html.skin-theme-clientpref-night .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-en-v2.svg"]{background-color:white}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-en-v2.svg"]{background-color:white}}
/* end https://en.wikipedia.org/ */
</style><div class="side-box side-box-right sistersitebox"><style data-mw-deduplicate="TemplateStyles:r1126788409">
/* start https://en.wikipedia.org/ */
.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}
/* end https://en.wikipedia.org/ */
</style>
<div class="side-box-flex">
<div class="side-box-image"><span class="noviewer" typeof="mw:File"></span></div>
<div class="side-box-text plainlist">Look up <i><b><a href="https://en.wiktionary.org/wiki/linker" class="extiw external" title="wiktionary:linker">linker</a></b></i> in Wiktionary, the free dictionary.</div></div>
</div>
<ul><li><a rel="nofollow" class="external text" href="https://www.google.com/search?q=site%3Awww.airs.com%2Fblog%2Farchives+%22linkers+part%22">Ian Lance Taylor's <i>Linkers</i> blog entries</a></li>
<li><a rel="nofollow" class="external text" href="http://www.linuxjournal.com/article/6463">Linkers and Loaders</a>, a <a href="Linux_Journal" title="Linux Journal">Linux Journal</a> article by Sandeep Grover</li>
<li><a rel="nofollow" class="external text" href="https://web.archive.org/web/20060808184333/http://www.dpgraph.com/assembly.html">Another Listing of Where to Get a Complete Collection of Free Tools for Assembly Language Development</a></li>
<li><a rel="nofollow" class="external text" href="https://sourceware.org/binutils/docs/ld/index.html">GNU linker manual</a></li>
<li><a rel="nofollow" class="external text" href="https://lld.llvm.org/">LLD - The LLVM Linker</a></li>
<li><span class="neverexpand"><code><a rel="nofollow" class="external text" href="https://manned.org/ld.1">ld(1)</a></code></span>: The GNU linker – <a href="Linux" title="Linux">Linux</a> User <a href="Man_page" title="Man page">Manual</a> – User Commands</li></ul>
<div class="navbox-styles"><style data-mw-deduplicate="TemplateStyles:r1129693374">
/* start https://en.wikipedia.org/ */
.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}
/* end https://en.wikipedia.org/ */
</style><style data-mw-deduplicate="TemplateStyles:r1236075235">
/* start https://en.wikipedia.org/ */
.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}
/* end https://en.wikipedia.org/ */
</style></div><div role="navigation" class="navbox" aria-labelledby="Application_binary_interface_(ABI)74" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><style data-mw-deduplicate="TemplateStyles:r1239400231">
/* start https://en.wikipedia.org/ */
.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}
/* end https://en.wikipedia.org/ */
</style><div id="Application_binary_interface_(ABI)74" style="font-size:114%;margin:0 4em"><a href="Application_binary_interface" title="Application binary interface">Application binary interface</a> (ABI)</div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Parts,<br>conventions</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Data_structure_alignment" title="Data structure alignment">Alignment</a></li>
<li><a href="Calling_convention" title="Calling convention">Calling convention</a></li>
<li><a href="Call_stack" title="Call stack">Call stack</a></li>
<li><a href="Library_(computing)" title="Library (computing)">Library</a>
<ul><li><a href="Static_library" title="Static library">static</a></li></ul></li>
<li><a href="Machine_code" title="Machine code">Machine code</a></li>
<li><a href="Memory_segmentation" title="Memory segmentation">Memory segmentation</a></li>
<li><a href="Name_mangling" title="Name mangling">Name mangling</a></li>
<li><a href="Object_code" title="Object code">Object code</a></li>
<li><a href="Opaque_pointer" title="Opaque pointer">Opaque pointer</a></li>
<li><a href="Position-independent_code" title="Position-independent code">Position-independent code</a></li>
<li><a href="Relocation_(computing)" title="Relocation (computing)">Relocation</a></li>
<li><a href="System_call" title="System call">System call</a></li>
<li><a href="Virtual_method_table" title="Virtual method table">Virtual method table</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Related topics</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Binary-code_compatibility" title="Binary-code compatibility">Binary-code compatibility</a></li>
<li><a href="Foreign_function_interface" title="Foreign function interface">Foreign function interface</a></li>
<li><a href="Language_binding" title="Language binding">Language binding</a></li>
<li>
<ul><li><a href="Dynamic_linker" title="Dynamic linker">dynamic</a></li></ul></li>
<li><a href="Loader_(computing)" title="Loader (computing)">Loader</a></li>
<li><a href="Year_2038_problem" title="Year 2038 problem">Year 2038 problem</a></li></ul>
</div></td></tr></tbody></table></div>
<div class="navbox-styles"></div><div role="navigation" class="navbox" aria-labelledby="Executable_and_object_file_formats118" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Executable_and_object_file_formats118" style="font-size:114%;margin:0 4em"><a href="Executable" title="Executable">Executable</a> and <a href="Object_file" title="Object file">object file</a> formats</div></th></tr><tr><td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="A.out" title="A.out">a.out</a></li>
<li><a href="Arm_Image_Format" title="Arm Image Format">AIF</a></li>
<li><a href="COFF" title="COFF">COFF</a></li>
<li><a href="CMD_file_(CP/M)" title="CMD file (CP/M)">CMD</a></li>
<li><a href="COM_file" title="COM file">COM</a></li>
<li><a href="ECOFF" title="ECOFF">ECOFF</a></li>
<li><a href="Executable_and_Linkable_Format" title="Executable and Linkable Format">ELF</a></li>
<li><a href="GOFF" title="GOFF">GOFF</a></li>
<li><a href="Amiga_Hunk" title="Amiga Hunk">Hunk</a></li>
<li><a href="Mach-O" title="Mach-O">Mach-O</a></li>
<li><a href="DOS_MZ_executable" title="DOS MZ executable">MZ</a></li>
<li><a href="New_Executable" title="New Executable">NE</a></li>
<li><a href="Object_Module_Format_(Intel)" title="Object Module Format (Intel)">OMF</a></li>
<li><a href="OS/360_Object_File_Format" title="OS/360 Object File Format">OS/360</a></li>
<li><a href="Portable_Executable" title="Portable Executable">PE</a></li>
<li><a href="Preferred_Executable_Format" title="Preferred Executable Format">PEF</a></li>
<li><a href=".X_(Human68K)" class="mw-redirect" title=".X (Human68K)">X</a></li>
<li><a href="XCOFF" title="XCOFF">XCOFF</a></li></ul>
</div></td></tr><tr><td class="navbox-abovebelow hlist" colspan="2"><div>
<ul><li><a href="Comparison_of_executable_file_formats" title="Comparison of executable file formats">Comparison of formats</a></li>
<li><a href=".exe" title=".exe">.exe</a></li></ul>
</div></td></tr></tbody></table></div>
<div class="navbox-styles"></div><div role="navigation" class="navbox" aria-labelledby="Unix_command-line_interface_programs_and_shell_builtins541" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Unix_command-line_interface_programs_and_shell_builtins541" style="font-size:114%;margin:0 4em"><a href="Unix" title="Unix">Unix</a> <a href="Command-line_interface" title="Command-line interface">command-line interface</a> programs and <a href="Shell_builtin" title="Shell builtin">shell builtins</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">File system</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Cat_(Unix)" title="Cat (Unix)">cat</a></li>
<li><a href="Chattr" title="Chattr">chattr</a></li>
<li><a href="Chmod" title="Chmod">chmod</a></li>
<li><a href="Chown" title="Chown">chown</a></li>
<li><a href="Chgrp" title="Chgrp">chgrp</a></li>
<li><a href="Cksum" title="Cksum">cksum</a></li>
<li><a href="Cmp_(Unix)" title="Cmp (Unix)">cmp</a></li>
<li><a href="Cp_(Unix)" title="Cp (Unix)">cp</a></li>
<li><a href="Dd_(Unix)" title="Dd (Unix)">dd</a></li>
<li><a href="Du_(Unix)" title="Du (Unix)">du</a></li>
<li><a href="Df_(Unix)" title="Df (Unix)">df</a></li>
<li><a href="File_(command)" title="File (command)">file</a></li>
<li><a href="Fuser_(Unix)" title="Fuser (Unix)">fuser</a></li>
<li><a href="Ln_(Unix)" title="Ln (Unix)">ln</a></li>
<li><a href="Ls" title="Ls">ls</a></li>
<li><a href="Mkdir" title="Mkdir">mkdir</a></li>
<li><a href="Mv_(Unix)" title="Mv (Unix)">mv</a></li>
<li><a href="Pax_(command)" title="Pax (command)">pax</a></li>
<li><a href="Pwd" title="Pwd">pwd</a></li>
<li><a href="Rm_(Unix)" title="Rm (Unix)">rm</a></li>
<li><a href="Rmdir" title="Rmdir">rmdir</a></li>
<li><a href="Split_(Unix)" title="Split (Unix)">split</a></li>
<li><a href="Tee_(command)" title="Tee (command)">tee</a></li>
<li><a href="Touch_(command)" title="Touch (command)">touch</a></li>
<li><a href="Type_(Unix)" title="Type (Unix)">type</a></li>
<li><a href="Umask" title="Umask">umask</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Processes</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="At_(command)" title="At (command)">at</a></li>
<li><a href="Job_control_(Unix)#Commands" title="Job control (Unix)">bg</a></li>
<li><a href="Cron" title="Cron">crontab</a></li>
<li><a href="Job_control_(Unix)#Commands" title="Job control (Unix)">fg</a></li>
<li><a href="Kill_(command)" title="Kill (command)">kill</a></li>
<li><a href="Nice_(Unix)" title="Nice (Unix)">nice</a></li>
<li><a href="Ps_(Unix)" title="Ps (Unix)">ps</a></li>
<li><a href="Time_(Unix)" title="Time (Unix)">time</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">User environment</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Env" title="Env">env</a></li>
<li><a href="Exit_(command)" title="Exit (command)">exit</a></li>
<li><a href="Logname" title="Logname">logname</a></li>
<li><a href="Mesg" title="Mesg">mesg</a></li>
<li><a href="Talk_(software)" title="Talk (software)">talk</a></li>
<li><a href="Tput" title="Tput">tput</a></li>
<li><a href="Uname" title="Uname">uname</a></li>
<li><a href="Who_(Unix)" title="Who (Unix)">who</a></li>
<li><a href="Write_(Unix)" title="Write (Unix)">write</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Text processing</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="AWK" title="AWK">awk</a></li>
<li><a href="Basename" title="Basename">basename</a></li>
<li><a href="Comm" title="Comm">comm</a></li>
<li><a href="Csplit" title="Csplit">csplit</a></li>
<li><a href="Cut_(Unix)" title="Cut (Unix)">cut</a></li>
<li><a href="Diff" title="Diff">diff</a></li>
<li><a href="Dirname" title="Dirname">dirname</a></li>
<li><a href="Ed_(text_editor)" class="mw-redirect" title="Ed (text editor)">ed</a></li>
<li><a href="Ex_(text_editor)" title="Ex (text editor)">ex</a></li>
<li><a href="Fold_(Unix)" title="Fold (Unix)">fold</a></li>
<li><a href="Head_(Unix)" title="Head (Unix)">head</a></li>
<li><a href="Iconv" title="Iconv">iconv</a></li>
<li><a href="Join_(Unix)" title="Join (Unix)">join</a></li>
<li><a href="M4_(computer_language)" title="M4 (computer language)">m4</a></li>
<li><a href="More_(command)" title="More (command)">more</a></li>
<li><a href="Nl_(Unix)" title="Nl (Unix)">nl</a></li>
<li><a href="Paste_(Unix)" title="Paste (Unix)">paste</a></li>
<li><a href="Patch_(Unix)" title="Patch (Unix)">patch</a></li>
<li><a href="Printf_(Unix)" title="Printf (Unix)">printf</a></li>
<li><a href="Read_(Unix)" title="Read (Unix)">read</a></li>
<li><a href="Sed" title="Sed">sed</a></li>
<li><a href="Sort_(Unix)" title="Sort (Unix)">sort</a></li>
<li><a href="Strings_(Unix)" title="Strings (Unix)">strings</a></li>
<li><a href="Tail_(Unix)" title="Tail (Unix)">tail</a></li>
<li><a href="Tr_(Unix)" title="Tr (Unix)">tr</a></li>
<li><a href="Troff" title="Troff">troff</a></li>
<li><a href="Uniq" title="Uniq">uniq</a></li>
<li><a href="Vi_(text_editor)" title="Vi (text editor)">vi</a></li>
<li><a href="Wc_(Unix)" title="Wc (Unix)">wc</a></li>
<li><a href="Xargs" title="Xargs">xargs</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="Shell_builtin" title="Shell builtin">Shell builtins</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Alias_(command)" title="Alias (command)">alias</a></li>
<li><a href="Cd_(command)" title="Cd (command)">cd</a></li>
<li><a href="Echo_(command)" title="Echo (command)">echo</a></li>
<li><a href="Test_(Unix)" title="Test (Unix)">test</a></li>
<li><a href="Environment_variable#unset_command" title="Environment variable">unset</a></li>
<li><a href="Wait_(command)" title="Wait (command)">wait</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Searching</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Find_(Unix)" title="Find (Unix)">find</a></li>
<li><a href="Grep" title="Grep">grep</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Documentation</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Man_page" title="Man page">man</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="Software_development" title="Software development">Software development</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Ar_(Unix)" title="Ar (Unix)">ar</a></li>
<li><a href="Ctags" title="Ctags">ctags</a></li>
<li><a href="Lex_(software)" title="Lex (software)">lex</a></li>
<li><a href="Make_(software)" title="Make (software)">make</a></li>
<li><a href="Nm_(Unix)" title="Nm (Unix)">nm</a></li>
<li><a href="Strip_(Unix)" title="Strip (Unix)">strip</a></li>
<li><a href="Yacc" title="Yacc">yacc</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Miscellaneous</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Bc_(programming_language)" title="Bc (programming language)">bc</a></li>
<li><a href="Cal_(command)" title="Cal (command)">cal</a></li>
<li><a href="Expr" title="Expr">expr</a></li>
<li><a href="System_V_printing_system" title="System V printing system">lp</a></li>
<li><a href="Od_(Unix)" title="Od (Unix)">od</a></li>
<li><a href="Sleep_(command)" title="Sleep (command)">sleep</a></li>
<li><a href="True_and_false_(commands)" title="True and false (commands)">true and false</a></li></ul>
</div></td></tr><tr><td class="navbox-abovebelow hlist" colspan="2"><div>
<ul><li><span class="noviewer" typeof="mw:File"><span title="Category"></span></span> <b>Categories</b>
<ul><li>Standard Unix programs</li>
<li>Unix SUS2008 utilities</li></ul></li>
<li><span class="noviewer" typeof="mw:File"><span title="List-Class article"></span></span> <b><a href="List_of_POSIX_commands" title="List of POSIX commands">List</a></b></li></ul>
</div></td></tr></tbody></table></div>
<div class="navbox-styles"></div><div role="navigation" class="navbox authority-control" aria-label="Navbox757" style="padding:3px"><table class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Authority control databases: National </th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://d-nb.info/gnd/4145562-9">Germany</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://id.loc.gov/authorities/sh99011681">United States</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://catalogue.bnf.fr/ark:/12148/cb16102823h">France</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://data.bnf.fr/ark:/12148/cb16102823h">BnF data</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://www.nli.org.il/en/authorities/987007554000605171">Israel</a></span></li></ul></div></td></tr></tbody></table></div></div><!--htdig_noindex--><div><div class="zim-footer">
This article is issued from <a class="external text" title="Last edited on 2025-05-16" href="https://en.wikipedia.org/wiki/?title=Linker_(computing)&oldid=1290759335">Wikipedia</a>. The text is available under <a class="external text" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">Creative Commons Attribution-Share Alike 4.0</a> unless otherwise noted. Additional terms may apply for the media files.
</div>
</div><!--/htdig_noindex--></div>
</div>
</main>
</div>
</div>
</div>
</body></html>